home *** CD-ROM | disk | FTP | other *** search
/ PC Action 1999 September / PC Action Issue 81 (September 1999).ISO / vft / _setup.1 / BasicVR.cst / 00004_Movie Display Frame Script.ls < prev    next >
Encoding:
Text File  |  1997-03-03  |  518 b   |  16 lines

  1. on exitFrame
  2.   -- Movie Display Frame Script
  3.   global gQTVRObj
  4.   
  5.   if isQTVRMovie(gQTVRObj) then  -- only do this stuff if there's an open qtvr movie
  6.     if rollover(10) then         -- test to see if the mouse is over the qtvr movie
  7.       QTVRMouseOver(gQTVRObj)    -- if it is then tell qtvr to take control
  8.     else
  9.       QTVRIdle(gQTVRObj)         -- if not then let qtvr perform it's idle business
  10.       cursor 200                 -- and reset the cursor
  11.       cursor -1
  12.     end if
  13.   end if
  14.   
  15.   go the frame
  16. end